home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / gcc / ixemul-4.lha / ixemul-41.4 / man / cat3 / strstr.0 < prev    next >
Text File  |  1992-08-10  |  1KB  |  67 lines

  1.  
  2. STRSTR(3)                  UNIX Programmer's Manual                  STRSTR(3)
  3.  
  4. NNAAMMEE
  5.      ssttrrssttrr - locate a substring in a string
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttrriinngg..hh>>
  9.  
  10.      _c_h_a_r _*
  11.      ssttrrssttrr(_c_o_n_s_t _c_h_a_r _*_b_i_g, _c_o_n_s_t _c_h_a_r _*_l_i_t_t_l_e)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The ssttrrssttrr() function locates the first occurrence of the null­terminated
  15.      string _l_i_t_t_l_e in the null­terminated string _b_i_g. If _l_i_t_t_l_e is the empty
  16.      string, ssttrrssttrr() returns _b_i_g; if _l_i_t_t_l_e occurs nowhere in _b_i_g, ssttrrssttrr()
  17.      returns NULL; otherwise ssttrrssttrr() returns a pointer to the first character
  18.      of the first occurrence of _l_i_t_t_l_e.
  19.  
  20. SSEEEE AALLSSOO
  21.      index(3),  memchr(3),  rindex(3),  strchr(3),  strcspn(3),  strpbrk(3),
  22.      strrchr(3),  strsep(3),  strspn(3),  strtok(3)
  23.  
  24. SSTTAANNDDAARRDDSS
  25.      The ssttrrssttrr() function conforms to ANSI C3.159­1989 (``ANSI C'').
  26.  
  27. BSD Experimental                 June 29, 1991                               1
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.